home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
FISHFACT.PAK
/
FSHTDLGC.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
965b
|
48 lines
/* Project fishfact
Borland International
Copyright ⌐ 1996. All Rights Reserved.
SUBSYSTEM: fishfact.exe Application
FILE: fshtdlgc.cpp
AUTHOR:
OVERVIEW
========
Source file for implementation of fishfactTDLGClient (TDialog).
*/
#include <owl\pch.h>
#pragma hdrstop
#include "ffactwin.h"
#include "fshtdlgc.h"
//{{fishfactTDLGClient Implementation}}
//////////////////////////////////////////////////////////
// fishfactTDLGClient
// ==========
// Construction/Destruction handling.
fishfactTDLGClient::fishfactTDLGClient (TWindow *parent, TResId resId, TModule *module)
: TDialog(parent, resId, module)
{
// INSERT>> Your constructor code here.
}
fishfactTDLGClient::~fishfactTDLGClient ()
{
Destroy();
// INSERT>> Your destructor code here.
}
DEFINE_RESPONSE_TABLE2(fishfactTDLGClient, TDialog, TVbxEventHandler)
END_RESPONSE_TABLE;